home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / pdcurs21.zip / NONPORT.ZIP / WORDCHAR.C < prev    next >
Text File  |  1992-11-21  |  1KB  |  37 lines

  1. #define        CURSES_LIBRARY  1
  2. #include <curses.h>
  3. #undef wordchar
  4.  
  5. #ifndef        NDEBUG
  6. char *rcsid_wordchar = "$Header: c:/curses/nonport/RCS/wordchar.c%v 2.0 1992/11/15 03:18:31 MH Rel $";
  7. #endif
  8.  
  9.  
  10.  
  11.  
  12. /*man-start*********************************************************************
  13.  
  14.   wordchar()   - returns the users word delete char
  15.  
  16.   PDCurses Description:
  17.        This routine returns the user's current word delete char.
  18.  
  19.        At the present time, this is still a constant, but positions
  20.        the library to more fully support this in the future.
  21.  
  22.   PDCurses Errors:
  23.        The wordchar returns the user's current delete word character.
  24.        If none is specified, then Ctrl-U is returned.
  25.  
  26.   Portability:
  27.        PDCurses        char wordchar( void );
  28.        SysV Curses     
  29.        BSD Curses      
  30.  
  31. **man-end**********************************************************************/
  32.  
  33. char   wordchar(void)
  34. {
  35.        return (_DWCHAR);                       /* word delete char */
  36. }
  37.